home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / include / setjmp.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  127b  |  11 lines

  1. #ifndef __SETJMP_H
  2. #define __SETJMP_H 1
  3.  
  4. typedef int jmp_buf[13];
  5.  
  6. int setjmp (jmp_buf);
  7. void longjmp (jmp_buf, int);
  8.  
  9. #endif
  10.  
  11.